home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Sample.bin / InvalidEmployeeException.java < prev    next >
Text File  |  1997-08-22  |  294b  |  18 lines

  1. /**
  2.  * Exception signaling an invalid employee data object
  3.  */
  4.  
  5. public class InvalidEmployeeException extends Exception
  6. {
  7.     public String toString()
  8.     {
  9.         return "InvalidEmployeeException";
  10.     }
  11.  
  12.     public String getMessage()
  13.     {
  14.         return "The Employee information is invalid";
  15.     }
  16. }
  17.  
  18.